type crypto/tls.ticketKey

11 uses

	crypto/tls (current package)
		common.go#L860: 	sessionTicketKeys []ticketKey
		common.go#L863: 	autoSessionTicketKeys []ticketKey
		common.go#L895: type ticketKey struct {
		common.go#L905: func (c *Config) ticketKeyFromBytes(b [32]byte) (key ticketKey) {
		common.go#L995: 		c.sessionTicketKeys = []ticketKey{c.ticketKeyFromBytes(c.SessionTicketKey)}
		common.go#L1009: func (c *Config) ticketKeys(configForClient *Config) []ticketKey {
		common.go#L1051: 		valid := make([]ticketKey, 0, len(c.autoSessionTicketKeys)+1)
		common.go#L1082: 	newKeys := make([]ticketKey, len(keys))
		conn.go#L79: 	ticketKeys []ticketKey
		ticket.go#L320: func (c *Config) encryptTicket(state []byte, ticketKeys []ticketKey) ([]byte, error) {
		ticket.go#L365: func (c *Config) decryptTicket(encrypted []byte, ticketKeys []ticketKey) []byte {